'Usage Dim instance As ListItemCollectionInfo Dim texts() As String instance.AddRange(texts)
Parameters
- texts
- A specified collection added into the collection.
'Usage Dim instance As ListItemCollectionInfo Dim texts() As String instance.AddRange(texts)
GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType gccombo = new GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType(); gccombo.DropDownStyle = ComboBoxStyle.DropDownList; gccombo.Items.AddRange(new string[] { "Feta", "Havarti", "Gruyere" }); fpSpread1.Sheets[0].Cells[1, 1].CellType = gccombo;
Dim gccombo As New GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType() gccombo.DropDownStyle = ComboBoxStyle.DropDownList gccombo.Items.AddRange(New String() {"Feta", "Havarti", "Gruyere"}) FpSpread1.Sheets(0).Cells(1, 1).CellType = gccombo